home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / HotShape / SmallCell.m < prev    next >
Text File  |  1995-06-12  |  588b  |  20 lines

  1. // SmallCell.m
  2. // By Charles G. Fleming, Educational Computing Services, Allegheny College.
  3. // Copyright 1992 Allegheny College
  4. // You may freely copy, distribute and reuse this code. 
  5. // Allegheny College and the author disclaim any warranty of any kind, 
  6. // expressed or implied, as to its fitness for any particular use.
  7. // This work was partially supported by a grant from the Vira Heinz Endowment.
  8.  
  9. #import "SmallCell.h"
  10.  
  11. @implementation SmallCell
  12.  
  13. - calcCellSize:(NXSize *)theSize inRect:(const NXRect *)aRect
  14. {
  15.     theSize->width = 0.0;
  16.     theSize->height = 0.0;
  17.     return self;
  18. }        
  19. @end
  20.